home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Internet Info 1994 March
/
Internet Info CD-ROM (Walnut Creek) (March 1994).iso
/
networking
/
ip
/
ka9q
/
net_des.arc
/
BYTESWAP.ASM
< prev
next >
Wrap
Assembly Source File
|
1988-02-22
|
379b
|
19 lines
include lmacros.h
; Convert a long (32-bit) integer between big-endian and little-endian form
procdef longswap,<<x1,word>,<x2,word>>
mov ax,x2
xchg ah,al
mov dx,x1
xchg dh,dl
pret
pend longswap
; Convert a short (16-bit) integer between big-endian and little-endian form
procdef shortswap,<<y1,word>>
mov ax,y1
xchg ah,al
pret
pend shortswap
end